|
button A button that can be pressed by the user. Event handlers can be used to trap mouse, keyboard and other events. It is typically rendered as a grey outset rectangle. You can specify the label of the button using the label attribute or by placing content inside the button. !!buttons.html
Attributes:
accesskey, autoCheck, checkState, checked, command, crop, dir, disabled, dlgType, group, image, label, open, orient, tabindex, type, value
Properties and Methods:
accesskey, autoCheck, blur, checkState, checked, command, controllers, crop, dir, dlgType, doCommand, focus, group, image, label, open, orient, type, value
checkbox An element that can be turned on and off. This is most commonly rendered as a box when the element is off and a box with a check when the element is on. The user can switch the state of the check box by selecting it with the mouse. A label, specified with the label attribute may be added beside the check box to indicate to the user as to its function. !!inputs.html
Attributes:
accesskey, checked, command, crop, disabled, image, label, tabindex, value
Properties and Methods:
accesskey, blur, checked, command, controllers, crop, doCommand, focus, image, label, value
radio An element that can be turned on and off. Radio buttons are almost always grouped together in groups. Only one radio button within the same group may be turned on at a time. The user can switch which radio button is turned on by selecting it with the mouse or keyboard. Other radio buttons in the same group are turned off. A label, specified with the label attribute may be added beside the radio button to indicate to the user as to its function. !!inputs.html
Attributes:
accesskey, checked, command, crop, disabled, focused, image, label, selected, tabindex, value
Properties and Methods:
accesskey, blur, checked, command, controllers, crop, doCommand, focus, image, label, radioGroup, selected, value
textbox A text input field in which the user can enter text. It is similar to the HTML input element. Only one line of text is displayed by default. The multiline attribute can be specified to display a field with multiple rows. !!inputs.html
Attributes:
disabled, focused, maxlength, multiline, oninput, readonly, size, type, value, wrap
Properties and Methods:
controllers, disabled, maxlength, readonly, selectionEnd, selectionStart, setSelectionRange, size, textLength, type, value
textbox(autocomplete) This element is created by setting the type attribute of a textbox to 'autocomplete'. It is used to create a textbox with a popup containing a list of possible completions for what the user has started to type.
Attributes:
autoFill, autoFillAfterMatch, crop, disableAutocomplete, flexPopup, focused, forceComplete, hideHistory, label, maxrows, oninit, ontextcommand, ontextrevert, open, searchSessions, showCommentColumn, showPopup, tabScrolling, timeout, userAction
Properties and Methods:
addSession, autoFill, autoFillAfterMatch, clearResults, crop, disableAutocomplete, flexPopup, focused, forceComplete, getDefaultSession, getResultAt, getResultCount, getResultValueAt, getSession, getSessionByName, getSessionResultAt, getSessionValueAt, hideHistory, isSearching, isWaiting, label, maxRows, noMatch, open, removeSession, resultsPopup, searchSessions, sessionCount, showCommentColumn, showPopup, syncSessions, tabScrolling, timeout, userAction
|
description This element is used to create a block of text. The text can be set either with the value attribute or by placing text inside the open and close description tags. The value attribute is used to set text that appears in a single line. If text appears as a child of the description, it will wrap to multiple lines. If may contain arbitrary markup, which can be styled as needed. !!textimage.html
Attributes:
crop, disabled, value
Properties and Methods:
crop, disabled, value
label This element is used to provide a label for an control element, If the user clicks the label, it will move the focus to the associated control, specified with the control attribute. !!textimage.html
Attributes:
accesskey, control, crop, disabled, value
Properties and Methods:
accesskey, control, crop, disabled, value
image An element that displays an image, much like the HTML img element. The src attribute can be used to specify the URL of the image. !!textimage.html
Attributes:
onerror, onload, src, validate
Properties and Methods:
src
separator Creates a separator bar. This type of separator should be used to separate parts of a dialog. It is functionally equivalent to a spacer but some skins may apply a different appearance. !!none
spacer An element that takes up space but does not display anything. It is usually used to place spacing within a container. !!springs.html
|